home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue40 / Diagram / WebMapper.dpr < prev   
Encoding:
Text File  |  1998-07-09  |  263 b   |  16 lines

  1. program WebMapper;
  2.  
  3. uses
  4.   Forms,
  5.   MainForm in 'MainForm.pas' {MainDlg},
  6.   JimShape in 'JimShape.pas',
  7.   JimParse in 'JimParse.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TMainDlg, MainDlg);
  14.   Application.Run;
  15. end.
  16.